home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_097 / graphit / makefile < prev    next >
Makefile  |  1992-05-06  |  299b  |  18 lines

  1. graph: window.o func.o main.o three-d.o help.o
  2.     ln -o graph window.o func.o three-d.o help.o main.o -lm32 -lc32
  3.  
  4. window.o: window.c
  5.     cc -s +l window.c
  6.  
  7. func.o: func.c
  8.     cc -s +l func.c
  9.  
  10. three-d.o: three-d.c
  11.     cc -s +l three-d.c
  12.  
  13. main.o: main.c
  14.     cc -s +l main.c
  15.  
  16. help.o: help.c
  17.     cc -s +l -z7000 help.c
  18.